home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 October / CHIP Turkiye Ekim 2000.iso / prog / naps / 04 / setup.exe / Gnucleus / Gnucleus.h < prev    next >
C/C++ Source or Header  |  2000-07-15  |  2KB  |  71 lines

  1. // Gnucleus.h : main header file for the GNUCLEUS application
  2. //
  3.  
  4. #if !defined(AFX_GNUCLEUS_H__1AE2E5C8_1AB4_11D4_ACF2_00A0CC533D52__INCLUDED_)
  5. #define AFX_GNUCLEUS_H__1AE2E5C8_1AB4_11D4_ACF2_00A0CC533D52__INCLUDED_
  6.  
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10.  
  11. #ifndef __AFXWIN_H__
  12.     #error include 'stdafx.h' before including this file for PCH
  13. #endif
  14.  
  15. #include "resource.h"       // main symbols
  16.  
  17. //: Show animation effect on dialog box creation and destruction
  18. void ShowAnimEffect( CWnd* pWnd, BOOL bOpen );
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CGnucleusApp:
  22. // See Gnucleus.cpp for the implementation of this class
  23. //
  24.  
  25. class CGnucleusApp : public CWinApp
  26. {
  27. public:
  28.     CGnucleusApp();
  29.  
  30.     CDocument *MasterDoc;
  31.  
  32.     CMultiDocTemplate* m_pConnectViewTemplate;
  33.     CMultiDocTemplate* m_pNodeViewTemplate;
  34.     CMultiDocTemplate* m_pSearchViewTemplate;
  35.     CMultiDocTemplate* m_pSearchSpyViewTemplate;
  36.     CMultiDocTemplate* m_pDebugViewTemplate;
  37.     CMultiDocTemplate* m_pTransfersViewTemplate;
  38.  
  39.     CFrameWnd* ConnectFrame;
  40.     CFrameWnd* TransferFrame;
  41.  
  42. // Overrides
  43.     // ClassWizard generated virtual function overrides
  44.     //{{AFX_VIRTUAL(CGnucleusApp)
  45.     public:
  46.     virtual BOOL InitInstance();
  47.     virtual int ExitInstance();
  48.     //}}AFX_VIRTUAL
  49.  
  50. // Implementation
  51.     //{{AFX_MSG(CGnucleusApp)
  52.     afx_msg void OnAppAbout();
  53.     afx_msg void OnConnect();
  54.     afx_msg void OnButtonSearch();
  55.     afx_msg void OnDebug();
  56.     afx_msg void OnDlgPrefs();
  57.     afx_msg void OnTransfer();
  58.     afx_msg void OnViewSearchspy();
  59.     afx_msg void OnUpdateViewSearchSpy(CCmdUI *pui);
  60.     //}}AFX_MSG
  61.     DECLARE_MESSAGE_MAP()
  62. };
  63.  
  64.  
  65. /////////////////////////////////////////////////////////////////////////////
  66.  
  67. //{{AFX_INSERT_LOCATION}}
  68. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  69.  
  70. #endif // !defined(AFX_GNUCLEUS_H__1AE2E5C8_1AB4_11D4_ACF2_00A0CC533D52__INCLUDED_)
  71.